From ce99fd6592360172ad88189e2e187344f17f23af Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 17 Sep 1994 00:51:52 +0000 Subject: [PATCH] (EMACS_INT, EMACS_UINT): Define, if not already defined. --- src/lisp.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lisp.h b/src/lisp.h index d49fb527b18..bce12d63e6b 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -18,6 +18,14 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +/* These are default choices for the types to use. */ +#ifndef EMACS_INT +#define EMACS_INT int +#endif +#ifndef EMACS_UINT +#define EMACS_UINT unsigned int +#endif + /* Define the fundamental Lisp data structures */ /* This is the set of Lisp data types */ -- 2.30.2